home *** CD-ROM | disk | FTP | other *** search
- //////////////////
- // Your typical view class. Displays information about the doc file.
- //
- class CFileView : public TView {
- protected:
- CFileView();
- DECLARE_DYNCREATE(CFileView)
-
- public:
- virtual ~CFileView();
- virtual void OnDraw(CDC* pDC);
- virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
-
- CFileDoc* GetDocument() { return (CFileDoc*)m_pDocument; }
-
- protected:
- //{{AFX_MSG(CFileView)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-